home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Headers / misckit / debug.h < prev    next >
Encoding:
Text File  |  1995-04-12  |  908 b   |  24 lines

  1. //
  2. //    debug.h -- kit-wide debugging flags
  3. //        Written by Don Yacktman Copyright (c) 1994 by Don Yacktman.
  4. //                Version 1.0.  All rights reserved.
  5. //
  6. //        This notice may not be removed from this source code.
  7. //
  8. //    This code is included in the MiscKit by permission from the author
  9. //    and its use is governed by the MiscKit license, found in the file
  10. //    "LICENSE.rtf" in the MiscKit distribution.  Please refer to that file
  11. //    for a list of all applicable permissions and restrictions.
  12. //    
  13.  
  14. // This sets up a system useable throughout the MiscKit to allow the
  15. // programmer to turn diagnostics on and off.  It is up to individual
  16. // MiscKit classes and functions to either take advantage of this
  17. // facility or create its own (for finer granularity of debug info
  18. // or to enable a more verbose diagnostic).
  19.  
  20. int Misc_DebugState();
  21. void Misc_SetDebugState(int flag);
  22. void Misc_DebugOn();
  23. void Misc_DebugOff();
  24.